home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xmodmap / wc4g < prev    next >
Encoding:
Text File  |  1994-08-12  |  420 b   |  29 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4.  
  5. CFLAGS = -DMSDOS
  6.  
  7. all:    wc4g.tag xmodmap.exe
  8.  
  9. O =    xmodmap.obj \
  10.     exec.obj \
  11.     handle.obj \
  12.     pf.obj
  13.  
  14. .c.obj :
  15.     wcc386 $(CFLAGS) $*.c
  16.  
  17. xmodmap.exe:    wc4g $(O)
  18.     wlink N xmodmap.exe f xmodmap,exec,handle,pf l X11,sys op st=30k,caseexact
  19.  
  20. wc4g.tag:
  21.     del *.tag
  22.     del *.obj
  23.     del *.map
  24.     del *.rsp
  25.     del *.cfg
  26.     del *.exe
  27.     echo >wc4g.tag
  28.  
  29.